# randomize author order
aut <- c('Marcus Beck', 'Kirsten Dorans', 'Jessica Renee Henkel', 'Kathryn Ireland', 'Ed Sherwood', 'Patricia Varela') %>%
sample %>%
paste(collapse = ', ')
cat('By', aut)
By Patricia Varela, Kathryn Ireland, Kirsten Dorans, Jessica Renee Henkel, Marcus Beck, Ed Sherwood